home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / comm2 / nwsdarfr.lha / Newsed-Arfir / Install_Newsed&Arfir < prev    next >
Text File  |  1995-09-08  |  2KB  |  108 lines

  1. ;Installer For Newsed3 & Arfir
  2. ;
  3. ;©Martin Hunt 1995
  4. ;
  5. ;
  6.  
  7.  
  8. (set @defaultdest
  9.    (askdir
  10.        (prompt "Where do you want to install Arfir and Newsed")
  11.        (help @askdir-help)
  12.        (default "amitcp:bin")
  13.    )
  14. )
  15.  
  16. (copyfiles
  17.    (prompt "Copying Files To " @defaultdest )
  18.    (help @copyfiles-help)
  19.    (source "mainfiles/")
  20.    (all)
  21.    (dest @defaultdest)
  22.    (infos)
  23.    (confirm)
  24. )
  25.  
  26. (set postnews
  27.   (askbool
  28.       (default 1)
  29.       (prompt "Do you want to install the new postnews script\nSo that Newsed's signature options will work\n and so that GRn will post news?\n")
  30.       (help @askbool-help)
  31.   )
  32. )
  33. (if (= postnews 1)
  34.     (
  35.       (set arfirdest
  36.          (askdir
  37.             (prompt "Where do you want to install the postnews scripts?")
  38.             (help @askdir-help)
  39.             (default "amitcp:bin")
  40.          )
  41.       )
  42.       (set whichpostnews
  43.          (askbool
  44.             (prompt "Are you a Demon Internet subscriber?")
  45.             (help @askbool-help)
  46.             (default 0)
  47.          )
  48.       )
  49.       (if (= whichpostnews 0)
  50.          (copyfiles
  51.             (prompt "Copying Files To " arfirdest )
  52.             (help @copyfiles-help)
  53.             (source "bin/other")
  54.             (all)
  55.             (dest arfirdest)
  56.             (confirm)
  57.             (infos)
  58.          )
  59.          (copyfiles
  60.             (prompt "Copying Files To " arfirdest )
  61.             (help @copyfiles-help)
  62.             (source "bin/demon")
  63.             (all)
  64.             (dest arfirdest)
  65.             (confirm)
  66.             (infos)
  67.          )
  68.       )
  69.     )
  70. )
  71.  
  72. (set docs
  73.    (askdir
  74.        (prompt "Where do you want the doc files to be installed?")
  75.        (help @askdir-help)
  76.        (default "amitcp:docs")
  77.    )
  78. )
  79.  
  80. (copyfiles
  81.  (prompt "Copying Docs To "docs)
  82.    (help @copyfiles-help)
  83.    (source "docs")
  84.    (all)
  85.    (dest docs)
  86.    (infos)
  87.    (confirm)
  88. )
  89.  
  90. (copylib
  91.    (prompt "Copying Apig.Library to Libs:" )
  92.    (help @copyfiles-help)
  93.    (source "Libs/apig.library")
  94.    (dest "Libs:")
  95.    (infos)
  96.    (confirm)
  97. )
  98. (copylib
  99.    (prompt "Copying rexxsupport.library to Libs:" )
  100.    (help @copyfiles-help)
  101.    (source "Libs/rexxsupport.library")
  102.    (dest "Libs:")
  103.    (infos)
  104.    (confirm)
  105. )
  106.  
  107.  
  108.